home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / sendcom_.zip / MYFILE.H < prev    next >
Text File  |  1991-07-29  |  311b  |  14 lines

  1. // MYFILE.HPP
  2.  
  3. //::::::::::::::::::::::::::[ STRUCT myfile ]::::::::::::::::::::::::::::::
  4.  
  5. // USED FOR MOST USED FILE I/O ROUTINES.
  6. struct myfile {
  7.         int handle;
  8.         myfile(void);
  9.         int mopen(const char *, int=O_RDONLY|O_BINARY|O_DENYNONE, int=0);
  10.         void mclose(void);
  11. };
  12.  
  13.  
  14.